home *** CD-ROM | disk | FTP | other *** search
- /* file compact1.c */
- #include <stdio.h>
- #include <stdlib.h>
- #ifdef BUG
- extern int __start[];
- #else
- extern int _ftext[];
- #endif
- extern int _fdata[];
- #define SIZE 4096
- int array[SIZE];
- void main(void) {
- #ifdef BUG
- printf("Start of program text = 0x%lx\n",(unsigned long)__start);
- #else
- printf("Start of program text = 0x%lx\n",(unsigned long)_ftext);
- #endif
- printf("Start of program data = 0x%lx\n",(unsigned long)_fdata);
- exit(0);
- }
-